home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / MultiselTreeCtrl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-27  |  1.9 KB  |  69 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #if !defined(AFX_MULTISELTREECTRL_H__F12E41C9_40F9_11D4_9042_00A0249EABF4__INCLUDED_)
  8. #define AFX_MULTISELTREECTRL_H__F12E41C9_40F9_11D4_9042_00A0249EABF4__INCLUDED_
  9.  
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. // MultiselTreeCtrl.h : header file
  14. //
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CMultiselTreeCtrl window
  18.  
  19. class CMultiselTreeCtrl : public CTreeCtrl
  20. {
  21.     // Construction
  22.     public:
  23.         CMultiselTreeCtrl();
  24.  
  25.     // Attributes
  26.     public:
  27.  
  28.         protected:
  29.     HTREEITEM                    m_hItemFirstSel;
  30.     CList<HTREEITEM, HTREEITEM> m_SelItemList;
  31.  
  32.     // Operations
  33.     public:
  34.  
  35.         // Overrides
  36.         // ClassWizard generated virtual function overrides
  37.         //{{AFX_VIRTUAL(CMultiselTreeCtrl)
  38.     public:
  39.     //}}AFX_VIRTUAL
  40.  
  41.         // Implementation
  42. public:
  43.     virtual ~CMultiselTreeCtrl();
  44.  
  45.     virtual void    ClearSelection(BOOL bCleanTree);
  46.     BOOL            SelectItems(HTREEITEM hItemFrom, HTREEITEM hItemTo);
  47.     BOOL            IsSibling(HTREEITEM hFromItem, HTREEITEM hToItem);
  48.     void            UpdateSelectedItems();
  49.  
  50.     // Generated message map functions
  51.     protected:
  52.     //{{AFX_MSG(CMultiselTreeCtrl)
  53.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  54.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  55.     afx_msg void OnKillFocus(CWnd* pNewWnd);
  56.     afx_msg void OnSetFocus(CWnd* pOldWnd);
  57.     afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  58.     //}}AFX_MSG
  59.  
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67.  
  68. #endif // !defined(AFX_MULTISELTREECTRL_H__F12E41C9_40F9_11D4_9042_00A0249EABF4__INCLUDED_)
  69.